Overload | Description |
---|---|
BeInDescendingOrder<TSelector>(Expression<Func<T,TSelector>>,String,Object[]) | Asserts that a collection is ordered in descending order according to the value of the specified propertyExpression. |
BeInDescendingOrder(IComparer<T>,String,Object[]) | Asserts that a collection is ordered in descending order according to the value of the specified IComparer implementation. |
BeInDescendingOrder<TSelector>(Expression<Func<T,TSelector>>,IComparer<TSelector>,String,Object[]) | Asserts that a collection is ordered in descending order according to the value of the specified propertyExpression and IComparer implementation. |
BeInDescendingOrder(String,Object[]) | Expects the current collection to have all elements in descending order. Elements are compared using their System.IComparable.CompareTo(System.Object) implementation. |
BeInDescendingOrder(Func<T,T,Int32>,String,Object[]) | Expects the current collection to have all elements in descending order. Elements are compared using the given lambda expression. |